summaryrefslogtreecommitdiff
path: root/src/pages/history/[date].astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/history/[date].astro')
-rw-r--r--src/pages/history/[date].astro17
1 files changed, 4 insertions, 13 deletions
diff --git a/src/pages/history/[date].astro b/src/pages/history/[date].astro
index 8796c14..0a78f9f 100644
--- a/src/pages/history/[date].astro
+++ b/src/pages/history/[date].astro
@@ -1,4 +1,5 @@
---
+import Layout from '../../layouts/Layout.astro';
import { Geshem } from '../../components/Geshem';
import '../../styles/global.css';
@@ -7,16 +8,6 @@ export const prerender = false;
const { date } = Astro.params;
---
-<html lang="en">
- <head>
- <meta charset="utf-8" />
- <link rel="icon" type="image/png" href="/favicon.png" />
- <meta name="viewport" content="width=device-width" />
- <meta name="generator" content={Astro.generator} />
- <title>Geshem - Rain Radar History</title>
- <meta name="description" content="Israel Rain Radar History" />
- </head>
- <body>
- <Geshem client:load date={date} />
- </body>
-</html> \ No newline at end of file
+<Layout title="Geshem - Rain Radar History" description="Israel Rain Radar History">
+ <Geshem client:load date={date} />
+</Layout> \ No newline at end of file